home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / VOL_400 / 422_02 / MISC / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-19  |  163 b   |  12 lines

  1. /*
  2.  * Standard 'C' demo... Say hello to the world
  3.  *
  4.  * Compile command: cc hello
  5.  */
  6. #include \mc\stdio.h
  7.  
  8. main()
  9. {
  10.     fputs("Hello world\n", stdout);
  11. }
  12.